All Questions
5 questions
6votes
4answers
894views
Very simple CSV-parser in Java
Please take a look at my method for parsing a CSV string. I am looking for a simple approach without using an external library. Is throwing a RuntimeException ...
2votes
1answer
284views
Reading bytes between two quotes from a stream and decoding it to its appropriate character set [closed]
This is a component for a lexer which operates on a byte input stream that handles reading and decoding the contents of a string contained within double-quotes. The validity of the encoding is handled ...
5votes
4answers
4kviews
Make my XML Parser in Java using WoodStox run faster and use less memory, or just generally better
I have an XML Parser in Java using WoodStox that I wrote. This parser is going to be parsing through extremely large files, could be 5+GB. The goal of the parser is to convert a nest XML file into a ...
3votes
3answers
6kviews
Parsing multiple line records using Java 8 Streams
There was a suggestion in this StackOverflow question to move this question here. I added some more information and restructured the question a bit. I'm trying to parse the following file which ...
0votes
1answer
1kviews